home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / states / IOverride.as < prev    next >
Text File  |  2008-10-29  |  276b  |  16 lines

  1. package mx.states
  2. {
  3.    import mx.core.UIComponent;
  4.    
  5.    public interface IOverride
  6.    {
  7.        
  8.       
  9.       function initialize() : void;
  10.       
  11.       function remove(param1:UIComponent) : void;
  12.       
  13.       function apply(param1:UIComponent) : void;
  14.    }
  15. }
  16.